home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 12 / Cream of the Crop 12 (Part II) / Cream of the Crop 12 (Part II).iso / OS2 / FSPLIT.ZIP / Makefile.os2 < prev    next >
Encoding:
Makefile  |  1996-04-22  |  423 b   |  29 lines

  1. #    @(#)Makefile    8.1 (Berkeley) 6/6/93
  2. # updated for OS/2 2.x by S. A. Deutscher, 21-Apr-1996
  3.  
  4. PROG    = fsplit
  5. CC    = gcc
  6. CFLAGS    = -c -O -s
  7. LDFLAGS    = -O -s
  8.  
  9.  
  10. fsplit.exe : fsplit.o
  11.     $(CC) $(LDFLAGS) fsplit.o -o fsplit.exe
  12.  
  13. fsplit.o : fsplit.c
  14.     $(CC) $(CFLAGS) fsplit.c -o fsplit.o
  15.  
  16. fsplit    : fsplit.exe
  17.  
  18.  
  19. .PHONY : clean allclean
  20.  
  21. clean :
  22.     rm fsplit.o
  23.  
  24. xclean :
  25.     rm fsplit.exe
  26.  
  27. allclean : xclean clean
  28.     
  29.